home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / scott / WWW / NextStep / Implementation / WWWPageLayout.h < prev    next >
Text File  |  1991-03-14  |  409b  |  28 lines

  1. /*        Page layout subclass
  2. **        --------------------
  3. **
  4. ** History
  5. **    14 Mar 91    Based on the DrawPageLayout class in the Draw example application
  6. **
  7. */
  8.  
  9. #import <appkit/PageLayout.h>
  10.  
  11. @interface WWWPageLayout : PageLayout
  12. {
  13.     id leftMargin;
  14.     id rightMargin;
  15.     id topMargin;
  16.     id bottomMargin;
  17. }
  18.  
  19. /* Methods overridden from superclass */
  20.  
  21. - pickedUnits:sender;
  22. - readPrintInfo;
  23. - writePrintInfo;
  24.  
  25. @end
  26.  
  27.  
  28.